home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / qprn102.zip / KQ-PACK.BAT < prev    next >
DOS Batch File  |  1993-04-25  |  1KB  |  28 lines

  1. REM This batch file is for repacking QWK packets with versions of
  2. REM KingQWK earlier than 1.05.  First, replace [king_work] with the
  3. REM work directory defined in KingQWK's configuration.  Note that
  4. REM the work directory must be entered in upper case.
  5. REM
  6. REM If you're passing one parameter to your packer, as in the line 
  7. REM PKZIP -A, the name of the QWK file will be %3, and %4 will be for the
  8. REM files that are to be packed.  If you're not passing any options, these
  9. REM parameters will be %2 and %3, respectively.  If you pass more than one
  10. REM option to the packer, increase these parameter numbers by 1 for each
  11. REM additional option.  %1 is the name of your unpacker.  The line
  12. REM "%1 -d -k %3 *.ndx" deletes the old .NDX files from the QWK packet,
  13. REM and presumes you're using PKZIP.  You'll need to edit it if you're 
  14. REM using another packer.
  15. REM
  16. @echo off
  17. if %4 == [king_work]\MESSAGES.DAT goto messages
  18. if %4 == [king_work]\*.KRD goto bookmark
  19. %1 %2 %3 %4 %5 %6 %7 %8 %9
  20. goto endit
  21. :messages
  22. %1 -d -k %3 *.ndx
  23. %1 %2 %3 %4 %5 %6 %7 %8 %9 [king_work]\*.ndx
  24. goto endit
  25. :bookmark
  26. %1 %2 %3 %4 %5 %6 %7 %8 %9
  27. :endit
  28.